1.1.8.26. osx.coreFoundation.containers.OutOfBounds (C)
Checks for index out-of-bounds when using 'CFArray' API.

Examples:

void test() {
  CFArrayRef A = CFArrayCreate(0, 0, 0, &kCFTypeArrayCallBacks);
  CFArrayGetValueAtIndex(A, 0); // warn
}